home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MosaicSRC / src / TextEditField.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  1.4 KB  |  33 lines

  1. #ifndef TEXTEDITFIELD_H
  2. #define TEXTEDITFIELD_H
  3.  
  4. #define MUIA_TEF_Text    (TAG_USER + 0x0001)        //ISG
  5. #define MUIA_TEF_Height    (TAG_USER + 0x0002)        //I.. /* (ULONG) In pixels */
  6. #define MUIA_TEF_Width    (TAG_USER + 0x0003)        //I.. /* (ULONG) In pixels */
  7. #define MUIA_TEF_Font    (TAG_USER + 0x0004)        //I.. /* (struct TextFont *) */
  8. #define MUIA_TEF_VBar    (TAG_USER + 0x0005)        //I.. /* PRIVATE */
  9. #define MUIA_TEF_HBar    (TAG_USER + 0x0006)        //I.. /* PRIVATE */
  10. #define MUIA_TEF_FirstX    (TAG_USER + 0x0007)        //I..
  11. #define MUIA_TEF_FirstY    (TAG_USER + 0x0008)        //I..
  12. #define MUIA_TEF_CursorState    (TAG_USER + 0x0009)        //IS.
  13. #define MUIA_TEF_Cursor    (TAG_USER + 0x000A)        //I..
  14. #define MUIA_TEF_Active (TAG_USER + 0x000B)        //IS.
  15. #define MUIM_TEF_FileChange (TAG_USER + 0x000C)    // The text has changed on disk.
  16.  
  17. #define MUIA_TEF_ParentL    (TAG_USER + 0x000D)        //.S. /* PRIVATE */
  18. #define MUIA_TEF_ParentR    (TAG_USER + 0x000E)        //.S. /* PRIVATE */
  19. #define MUIA_TEF_ParentT    (TAG_USER + 0x000F)        //.S. /* PRIVATE */
  20. #define MUIA_TEF_ParentB    (TAG_USER + 0x0010)        //.S. /* PRIVATE */
  21. #define MUIA_TEF_Parent        (TAG_USER + 0x0011)        //I.. /* PRIVATE */
  22. #define MUIA_TEF_ActivateHook (TAG_USER + 0x0012)    //.S. /* struct Hook */
  23.  
  24. //#define MUIA_TEF_Font    (TAG_USER + 0x0004)        //I..
  25. //#define MUIA_TEF_Font    (TAG_USER + 0x0004)        //I..
  26. //#define MUIA_TEF_Font    (TAG_USER + 0x0004)        //I..
  27.  
  28.  
  29. Class *TextEditFieldClInit(void);
  30. BOOL TextEditFieldClFree(Class *cl);
  31.  
  32. #endif
  33.